home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr22 / shared10.zip / SHARED.DOC next >
Text File  |  1993-05-12  |  3KB  |  73 lines

  1.  
  2.                                   SHARED 1.0
  3.  
  4.                                              by Gary Chanson
  5.  
  6.  
  7.          SHARED  is  Copyright  1992  by  Gary  Chanson and Starquest
  8.          Systems.   No restrictions are  placed on the non-commercial
  9.          use of this program.  This program and its documentation may
  10.          be  copied  and  re-distributed  provided  that they are not
  11.          changed  and no  fee is  charged for  them.  An exception is
  12.          granted   to   not-for-profit   user's   groups,  which  are
  13.          authorized  to  charge  a  nominal  fee  for  materials  and
  14.          handling.
  15.  
  16.  
  17.      Description:
  18.  
  19.          SHARED  is  a  DOS  utility  which  displays  a  list of the files
  20.      currently  in use.  It  can also close  files selectively or globally.
  21.      It  requires that the DOS utility  SHARE has been loaded.  Its purpose
  22.      is to close files which have been left open by programs which have not
  23.      cleaned-up  properly  due  to  premature  termination or program bugs.
  24.  
  25.  
  26.          ************************************************************
  27.          *                                                          *
  28.          *                         WARNING!                         *
  29.          *                                                          *
  30.          *   Use  of this program can cause damage to stored data   *
  31.          *   if  a file is closed before the program which opened   *
  32.          *   it is finished accessing it!  DOS does not prevent a   *
  33.          *   program  from accessing a file closed in this manor!   *
  34.          *                                                          *
  35.          ************************************************************
  36.  
  37.  
  38.      Usage:
  39.  
  40.      To display a list of the files currently open, enter:
  41.  
  42.          SHARED <enter>
  43.  
  44.      SHARED will display a list of open files such as:
  45.  
  46.          C:\4DOS4\4DOS.COM
  47.          C:\TELIX\TELIX.EXE
  48.          C:\TELIX\HOST.LOG
  49.          C:\TELIX\BBS.FON
  50.  
  51.      To close a file, use the -C option.  The complete path and name of the
  52.      file  must be  specified.  To  close HOST.LOG  from the above example,
  53.      enter:
  54.  
  55.          SHARED -c C:\TELIX\HOST.LOG <enter>
  56.  
  57.      SHARED  can also close all  files or all files  for a specific process
  58.      (program).  To  close all files, enter:
  59.  
  60.          SHARED -a <enter>
  61.  
  62.      To close the files of a specific process, enter:
  63.  
  64.          SHARED -p process_id <enter>
  65.  
  66.      If  no  process  is  specified,  the  current process is assumed.  The
  67.      process  ID is the segment address of the Program Segment Prefix (PSP)
  68.      of the program.
  69.  
  70.          Warning!  The -a and -p options should be used VERY carefully!
  71.          This  is approximately like kicking  the ladder out from under
  72.          yourself!
  73.